πŸ‘¨‍πŸ’» Writing My First C Program – A Step Deeper into Programming

πŸ‘¨‍πŸ’» Writing My First C Program – A Step Deeper into Programming






A few days ago, I shared about writing my first Python program 🐍.
Today, I am excited to share another important milestone — I wrote my first program in C language πŸ’».

Here’s what it looked like:

#include <stdio.h>
int main()
{
   /*
   Program : C Language
   Author : Mayur B Gund
   Date : 6 Sep 2025
   */
   printf("Hello World,\n"); 
   printf("Mayur B Gund here,\n"); 
   printf("Entering into tech world.\n");
   int a = 1;
   printf("Day : %d", a);

   return 0;
}

πŸ“Œ Output:

Hello World,  
Mayur B Gund here,  
Entering into tech world.  
Day : 1

This program may look simple, but for me it was powerful ✨.
It wasn’t just about printing text — it was about entering a new mindset of problem solving 🧠.

πŸ”₯Learning Python and C Together : 
  • Python 🐍 gave me a smooth start with its simplicity — just a few lines of code and I was printing results.
  • C ⚙️ feels more structured and detailed — I had to write headers, define main(), and carefully manage syntax.
  • Both are teaching me unique lessons:
  • Python → quick, beginner-friendly, helps me focus on logic.
  • C → builds strong fundamentals, shows how computers actually work behind the scenes.
  • By learning both, I feel I’m balancing ease of exploration 🌱 with depth of understanding πŸ”¬.

πŸš€ What This Means for Me : 

Each program I write reminds me that small steps add up.
From printing “Hello World” to building real projects, this is the journey I am beginning.

With Python and C as my companions, I’m ready to dive deeper into the world of technology 🌍.

C Language Program in OneCompiler



Also read : 


Comments

Popular posts from this blog

The Boy Behind the Percentile: A Memory of 12:07 AM

πŸš€ Back on Track: Powering Up After Exams!

Scholar Desk : The Ego Issue